home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2000 February / Macworld (2000-02).dmg / Shareware World / Comms & Internet / Flex-Able 1.0 / Flex-Able Templates Folder / file_ops_template.able next >
Text File  |  1999-08-29  |  2KB  |  50 lines

  1. <!-- 
  2.     the variables with names containing capitol letters, IE 'FormName', are variables 
  3.     that sould be edited to reflect the project you are adapting this template to. 
  4. -->
  5.  
  6. <!-- read the contents of a form into Flex-Able. These contents are now named "FormName" -->
  7. <:set FormName <:read_form>>
  8.  
  9. <!-- require particular fields to be filled out before processing the form -->
  10. <:require FormName["Field1"] FormName["Field2"] FormName["Field3"] >
  11.  
  12. <!-- echo the contents of your form onto the response page -->
  13. <ul>
  14. <:foreach name value form>
  15.     <:echo "<b>" name "</b>:" value "<br>">
  16. <:/foreach>
  17. </ul>
  18. <P>
  19.  
  20. <!-- save the data from three field variables in the form to a text file 
  21.     (be sure to rename the field names to reflect your form field names) -->
  22. <:save_data "/Savedir/Subsavedir/Filename.ext" FormName["Field1"] FormName["Field2"] FormName["Field3"]>
  23.  
  24. <!-- save_custom to create a custom file with the contents of the field
  25.     variables from your form -->
  26. <:set CustomFile "/Savedir/Subsavedir/Filename.html">
  27. <:save_custom CustomFile>
  28.     <html><head><title>RESPONSE TITLE</title></head>
  29.     <body>
  30.     RESPONSE HTML GOES HERE
  31.     </body></html>
  32. <:/save_custom>
  33.  
  34. <!-- use make_unique_file to create a custom, uniquely named file with the contents of the field
  35.     variables from your form -->
  36. <:set CustomFile <:make_unique_file "/FADocs/MyTestFiles/Comments.html">>
  37. <:save_custom CustomFile>
  38.     <html><head><title>RESPONSE TITLE</title></head>
  39.     <body>
  40.     RESPONSE HTML GOES HERE
  41.     </body></html>
  42. <:/save_custom>
  43.  
  44. <!-- echo the URL of the newly cxreated and/or appended file -->
  45. <:echo <:file_uri CustomFile>>
  46.  
  47.  
  48.  
  49.  
  50.